home *** CD-ROM | disk | FTP | other *** search
/ Aminet 30 / Aminet 30 (1999)(Schatztruhe)[!][Apr 1999].iso / Aminet / gfx / misc / gnuplot-3.7src.lha / gnuplot-3.7src / gnuplot-3.7.lha / gnuplot-3.7 / docs / latextut / eg6.plt < prev    next >
Text File  |  1998-04-15  |  457b  |  15 lines

  1. set terminal latex
  2. set output "eg6.tex"
  3. set size 3.5/5, 3/3.
  4. set format y "$%g$"
  5. set format x '$%5.1f\mu$'
  6. set title "This is a title"
  7. set xlabel "This is the $x$ axis"
  8. set ylabel 'This is\\a longer\\version\\ of\\the $y$\\ axis'
  9. set label "Data" at -5,-5 right
  10. set arrow from -5,-5 to -3.3,-6.7
  11. set key -4,8
  12. set xtic -10,5,10
  13. plot [-10:10] [-10:10] "eg3.dat" title "Data File"  with linespoints 1 7,\
  14.    3*exp(-x*x)+1  title '$3e^{-x^{2}}+1$' with lines 4
  15.